home *** CD-ROM | disk | FTP | other *** search
/ The World of Computer Software / The World of Computer Software.iso / sep91.zip / 9N09020C < prev    next >
Text File  |  1991-07-09  |  460b  |  15 lines

  1.  
  2. void help(void)
  3. {
  4.     printf("\n   The action codes are:\n");
  5.     printf("\t0 - Exit this program\n");
  6.     printf("\t1 - Produce this help message\n");
  7.     printf("\t2 - Add a new node to the list\n");
  8.     printf("\t3 - Display a user-selected node\n");
  9.     printf("\t4 - Remove a user-selected node\n");
  10.     printf("\t5 - Show all nodes in ascending order\n");
  11.     printf("\t6 - Show all nodes in descending order\n");
  12.     printf("\t7 - Count the number of nodes\n");
  13. }
  14.  
  15.